home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / blockinsertdialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-16  |  1.5 KB  |  47 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10. // BlockInsertDialog.h : header file
  11. //
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CBlockInsertDialog dialog
  15.  
  16. class CBlockInsertDialog : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CBlockInsertDialog(IDrawing* pIDrawing, CWnd* pParent = NULL);   // standard constructor
  21.     ~CBlockInsertDialog();
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CBlockInsertDialog)
  25.     enum { IDD = IDD_BLK_INSERT };
  26.     CString    m_strBlockName;
  27.     //}}AFX_DATA
  28.     Blocks* m_pBlocks;
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CBlockInsertDialog)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.     virtual BOOL OnInitDialog();
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CBlockInsertDialog)
  43.     afx_msg void OnDblclkBlocks();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.